home *** CD-ROM | disk | FTP | other *** search
- import javax.servlet.*;
- import javax.servlet.http.*;
- import java.io.*;
-
- public class $${ClassName} extends HttpServlet {
- <wizif init eq "true">
- public void init() throws ServletException {
-
- }
- </wizif>
-
- <wizif doGet eq "true">
- protected void doGet(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
-
- }
- </wizif>
-
- <wizif doPost eq "true">
- protected void doPost(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
-
- }
- </wizif>
-
- <wizif destroy eq "true">
- public void destroy(){
-
- }
- </wizif>
- }
-
-